home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 1996 March / Amiga-CD 1996 #3.iso / pd-software / mui_3.1 / docs / changes next >
Text File  |  1996-01-19  |  30KB  |  827 lines

  1. ************************************************************************
  2.  
  3.                         MUI - MagicUserInterface
  4.  
  5.                 (c) Copyright 1992-95 by Stefan Stuntz
  6.  
  7.         This file describes all changes since version 1.0 of MUI
  8.  
  9. ************************************************************************
  10.  
  11.  
  12. ------------------------------------------------------------------------
  13. Version 3.1 (21-Nov-95)                      (muimaster.library V12.261)
  14. ------------------------------------------------------------------------
  15.  
  16. * MAJOR SASG UPDATE *
  17.  
  18. This is a major update. Please look at the information texts
  19. in the preferences program for information on how to update your
  20. registration.
  21.  
  22. Note: Almost everything in MUI changed, so this time, the changes
  23. section does not describe everything in detail but is just like a
  24. short overview.
  25.  
  26. Changes for users:
  27.  
  28. - To find a compromise between flexibility and resource usage, MUI 3
  29.   uses a completely new memory management concept. A lot of extra
  30.   features which are not necessarily needed to run applications have
  31.   been moved into external libraries. Most of these libraries are not
  32.   even loaded if MUI runs with its default settings. With this new
  33.   memory management, users have the the ability to control MUIs memory
  34.   usage by using appropriate configurations.
  35.  
  36. - MUI's speed has increased considerably compared with earlier versions.
  37.   This speedup depends on the machine MUI is running on: the slower the
  38.   Amiga, the more noticeable is the speed increase. Especially drawing
  39.   of GUI elements on ECS/AGA machines is a lot faster now due to a new
  40.   way of rendering. Even if a 7 MHz computer still can't be considered as
  41.   an optimum MUI platform, applications should perform a lot better now.
  42.  
  43. - The slow and bulky preferences system was completely rewritten, the
  44.   new way of handling settings is a lot clearer and more straight
  45.   forward. An applications local configuration is no longer adjusted
  46.   from the global preferences editor. Instead, all MUI applications
  47.   offer a way to open their private MUI settings window. This makes MUI
  48.   look more like an integral part of a program. Furthermore, the
  49.   settings windows are better structurized and offer easier access to
  50.   all configuration option.
  51.  
  52. - Public screen handling moved to an external program called "PSI"
  53.   (Public Screen Inspector). PSI fixes all known bugs of MUI 2.x
  54.   screens, is more easy to use and offers a few new features.
  55.   Furthermore, PSI can also be used independantly as screen manager for
  56.   non-MUI programs.
  57.  
  58. - All accompanying MUI programs make extensive use of brandnew MUI 3
  59.   programming features like dynamic object creations, balancing groups,
  60.   popup menus, Drag&Drop or Help bubbles. All those things have been
  61.   available on other operating systems for a long time, its about time
  62.   to get them to the Amiga.
  63.  
  64. Changes for programmers:
  65.  
  66. - Added so called "input handlers" which allow custom classes to
  67.   directly react on signal bits. See MUIM_AddInputHandler for details.
  68.  
  69. - You are encouraged to include a Settings/MUI... menu in your
  70.   application that does nothing but simply send a
  71.   MUIM_Application_OpenConfigWindow to your application object (see
  72.   psi.c).
  73.  
  74. - Implemented context sensitive popup menus. See autodocs of
  75.   MUIA_ContextMenu for details.
  76.  
  77. - Implemented custom layout groups. Positioning of children is
  78.   completely under programmers control. See new demo CustomLayout and
  79.   autodocs of MUIA_Group_LayoutHook for details.
  80.  
  81. - Changed layout behaviour of virtual groups. This should makes them
  82.   much more useful, especially together with the new custom layout
  83.   hooks. Performance was also increased. See autodocs of Virtgroup class
  84.   and Scrollgroup class for details.
  85.  
  86. - Implemented a Poppen class and new muimaster.library functions
  87.   MUI_ObtainPen() and MUI_ReleasePen(). Use this if your application
  88.   needs custom pens. See autodocs and demo Class2.c for details.
  89.  
  90. - Improved notification on MUIA_Window_InputEvent. See autodocs for
  91.   details.
  92.  
  93. - Fixed protection bits in dirlist objects MUIM_Dirlist_GetEntry.
  94.  
  95. - Implemented help bubbles. See MUIA_ShortHelp for details.
  96.  
  97. - Implemented MUIA_Parent attribute to ask an object about its parent
  98.   group.
  99.  
  100. - Included full source code of the new screen manager for educational
  101.   purposes. This little tool shows how to write good MUI programs. It
  102.   demonstrates several kinds of sub classes (windows, groups, lists),
  103.   drag & drop handling, dynamic object creation & linking, multi
  104.   threading, localization, help bubbles and much more. The screen
  105.   manager acts as a kind of standard MUI application, you can find lots
  106.   of important techniques and guidelines of MUI programming here. Forget
  107.   about the other demos, if you want to learn something, take the screen
  108.   manager. I want all of you to have a close look at the source and
  109.   drop your old-fashioned way of "ReturnID"-programming immediately.
  110.   It's time to get real object-oriented NOW! Don't be afraid of sub
  111.   classes, there isn't anything easier to work with.
  112.  
  113. - Implemented "disappearing" objects. Whenever a window is too small,
  114.   these objects are simply left out during layout calculations according
  115.   to their disappear level. This allows creation of complex and nice
  116.   GUIs while still remaining compatible with crappy 640x200 screens. See
  117.   autodocs of MUIA_HorizDisappear and MUIA_VertDisappear for details.
  118.  
  119. - Implemented "balancing" groups. See the Balancing demo and the
  120.   autodocs of the new BalanceClass for details.
  121.  
  122. - Implemented MUIM_Application_CheckRefresh method. You should call it
  123.   e.g. from IntuiMsgHooks of ASL-Requesters to ensure correct refreshing
  124.   of simple refresh type MUI windows. See autodocs and screen manager
  125.   source code for details.
  126.  
  127. - Implemented possibility to add objects to groups dynamically. See
  128.   autodocs of MUIM_Group_InitChange & MUIM_Group_ExitChange and screen
  129.   manager source code for details.
  130.  
  131. - Included simple brush2c program to help creating input for MUI's
  132.   Bitmap class. Source can be found in "MUI/Developer/C/Examples/",
  133.   usage examples are included in the screen manager's source code.
  134.  
  135. - Included classes to display tree structures.
  136.  
  137. - Introduced a new cycle chain system. All you have to do is to set
  138.   MUIA_CycleChain to 1 for every object that you want to have in your
  139.   chain, MUI does the rest automatically. The old
  140.   MUIM_Window_SetCycleChain will continue to work but is considered
  141.   obsolete.
  142.  
  143. - Implemented possibility to have custom builtin images in listviews.
  144.   No more need for external image files and other rubbish in your
  145.   applications. See psi.c ScreenList class and autodocs of
  146.   MUIM_List_CreateImage for details.
  147.  
  148. - Implemented full Drag&Drop facilities for all MUI objects. See
  149.   autodocs of MUIM_Drag#? in area class for details.
  150.  
  151. - Added a few new good-looking classes like level displays and turning
  152.   knobs. See slidorama demo for details.
  153.  
  154. - Rearranged class tree for slider-like classes that adjust numeric
  155.   values. See autodocs of numeric class and its subclasses for details.
  156.  
  157. - Implemented MUIM_Application_NewInput to improve behaviour of input
  158.   loops. MUIM_Application_Input will continue to work but is considered
  159.   obsolete.
  160.  
  161. - Implemented vertical bars in listviews with BAR/S switch for
  162.   MUIA_List_Format. See autodocs for details.
  163.  
  164.  
  165.  
  166. ------------------------------------------------------------------------
  167. Version 3.0 (10-Nov-95)                     (muimaster.library V11.3512)
  168. ------------------------------------------------------------------------
  169.  
  170. This was a special Computer 95 release and is not further documented.
  171.  
  172.  
  173.  
  174. ------------------------------------------------------------------------
  175. Version 2.3  (24-Dec-94)                      (muimaster.library V10.33)
  176. ------------------------------------------------------------------------
  177.  
  178. * MINOR SASG UPDATE *
  179.  
  180. Sorry, this update is a little smaller than usual. The reason is
  181. simple, I was on a long holiday trip during the last months. :-)
  182.  
  183. Changes for users:
  184.  
  185. - Online help works again (but only synchronous) for 2.x systems.
  186.  
  187. - Improved smooth scrolling for listviews with many entries.
  188.  
  189. - Prefs program fits on an NTSC 640x200 screen with topaz/8.
  190.  
  191. - Popup hotkey is filtered in string gadget input.
  192.  
  193. Changes for programmers:
  194.  
  195. - MUIA_String_MaxLen is gettable.
  196.  
  197. - MUIA_ControlChar works for listview class.
  198.  
  199. - Dirlist object returns correct file dates.
  200.  
  201. - MUIA_Dirlist_Directory is get()able.
  202.  
  203. - Implemented MUIA_Window_MouseObject & MUIA_Window_NeedsMouseObject
  204.   attributes for immediate online help. See autodocs & Settings demo
  205.   for details.
  206.  
  207. - Added some support for the GCC compiler (include/inline/muimaster.h).
  208.  
  209. - Implemented MUIA_Listview_ScrollerPos tag to specify the position of
  210.   the scrollbar in a listview.
  211.  
  212. - Fixed some problems with string gadgets and attached lists.
  213.  
  214. - Implemented MUIA_Application_UseRexx/UseCommodities attributes.
  215.   Set to FALSE to disable the builtin ARexx/Commodities handling.
  216.   Don't do this unless you have a very good reason!
  217.  
  218. - Boopsi objects in virtual groups are handled like string gadgets,
  219.   they only appear when they're completely visible.
  220.  
  221. - Implemented MUIV_Notify_Self, MUIV_Notify_Window and
  222.   MUIV_Notify_Application special values to simplify notification
  223.   mechanism. See autodocs of notify class (MUIM_Notify) for details.
  224.  
  225. - Note: If you have questions or suggestions about MUI, please do
  226.   *not* ask me directly. Write to the MUI mailing list instead:
  227.   To subscribe, send mail to <listserv@taloa.unice.fr> with
  228.   an empty subject and a line containing the magic words
  229.   SUB mui Your Name
  230.  
  231.  
  232.  
  233. ------------------------------------------------------------------------
  234. Version 2.2  (08-Aug-94)                       (muimaster.library V9.80)
  235. ------------------------------------------------------------------------
  236.  
  237. * MINOR SASG UPDATE *
  238.  
  239. Changes for users:
  240.  
  241. - There were some misunderstandings about SASG update rules. Unless
  242.   otherwise stated, all MUI updates are MINOR SASG UPDATES, i.e.
  243.   you are not required to update your keyfile. Major updates (maybe
  244.   one at the end of this year) will be specifically announced and
  245.   the MUI prefs program will tell you about it.
  246.  
  247. - When starting two or more MUI applications at the same time, there
  248.   was a chance that the keyfile was not recognized correctly.
  249.  
  250. - Fixed some installation script problems.
  251.  
  252. - Fixed a possible crash in the registration program.
  253.  
  254. - MUI 2.1 was accidently documented to require OS 2.1, that's of
  255.   course a documentation bug. MUI continues to run with 2.0.
  256.  
  257. - The serial number of a registered user is displayed in the prefs
  258.   programs about window.
  259.  
  260. - Because the MUI 2.1 default settings for HalfShine and HalfShadow
  261.   pen caused some confusion, they are back to standard MagicWB
  262.   rules (color n-4 and n-3) again.
  263.  
  264. - Fixed a bug in coloradjust class which caused wrong public screen
  265.   colors with V37.
  266.  
  267. - AmigaGuide online help works asynchronous for all MUI applications.
  268.  
  269. - Fixed some problems of listviews in virtual groups. Unfortunately,
  270.   some other problems are still there.
  271.  
  272. - Fixed cycle gadget lockup problem.
  273.  
  274. - Made window handling a bit more sensitive, MUI windows will now
  275.   look correctly even with non standard system gadget sizes.
  276.  
  277. - Prefs program terminates when receving a CTRL-C signal.
  278.  
  279. - Popup objects are controllable with a configurable hotkey.
  280.   See MUI-Prefs keyboard adjustment listview.
  281.  
  282. Changes for programmers:
  283.  
  284. - Autodocs for MUI_Redraw() didn't mention the important
  285.   fact that calling DoSuperMethod() is always the first
  286.   step in a custom classes MUIM_Draw method. Otherwise,
  287.   msg->flags is not set properly.
  288.  
  289. - Result of MUI_Redraw() changed from APTR to VOID.
  290.  
  291. - AppIcon notification works again.
  292.  
  293. - Implemented one-dimension virtual groups, useful e.g. for
  294.   button rows. See autodocs of MUIA_Scrollgroup_FreeHoriz and
  295.   MUIA_Scrollgroup_FreeVert for details.
  296.  
  297. - Getting MUIA_Disabled didn't work in previous releases.
  298.  
  299. - MUIA_Slider_Min und MUIA_Slider_Max are settable.
  300.  
  301. - Building subclasses of MUIC_Window is possible.
  302.  
  303. - Notify on MUIA_List_Entries works.
  304.  
  305. - Implemented MUIM_List_Move method to simplify moving entries
  306.   in a list. See autodocs for details.
  307.  
  308. - Implemented MUIA_Boopsi_Smart tag for better handling of "smart"
  309.   Boopsi classes, i.e. the freely distributable "editor.gadget".
  310.  
  311. - Implemented MUIM_NoNotifySet method for better handling of
  312.   bidirectional notifications (i.e. scrollbar <-> editorgadget).
  313.  
  314. - Implemented MUIA_List_InsertPosition to query position of
  315.   last inserted entry.
  316.  
  317. - Implemented MUIV_List_Remove_Selected for list class remove
  318.   method.
  319.  
  320. - Menuitem objects export & import their CHECKED state with
  321.   MUIM_Application_Save and MUIM_Application_Load.
  322.  
  323. - It's possible to include register groups in cycle chains.
  324.  
  325. - Implemented MUIA_Popobject_WindowHook to allow adjusting
  326.   cycle chains, default objects, etc. for popup objects.
  327.  
  328. - Programmers, please update "MUI.readme" in your distributions!
  329.  
  330.  
  331.  
  332. ------------------------------------------------------------------------
  333. Version 2.1  (03-Jul-94)                      (muimaster.library V8.697)
  334. ------------------------------------------------------------------------
  335.  
  336. * MINOR SASG UPDATE *
  337.  
  338. I planned to have a lot more new things for V2.1. Unfortunately, time
  339. was missing. Next versions of MUI will probably be split into a basic
  340. muimaster.library and a muifancy.library. The fancy library will hold
  341. all the additional features, users with low memory or slow machines may
  342. decide to leave out this stuff. For more infos, see the "Future" file
  343. in the developer archive.
  344.  
  345. Changes for users:
  346.  
  347. - From version 2.1 on, MUI is distributed under the rules of the SASG,
  348.   the Standardized Amiga Shareware Group. See the accompanying program
  349.   "Registration" for details.
  350.  
  351. - Screen preferences were not saved correctly sometimes.
  352.  
  353. - When changing the application with the preferences program,
  354.   MUI offers the possibility to use/save changed settings.
  355.  
  356. - Sliders can be configured to have their info text at the left side.
  357.  
  358. - Listview multiselect mode was sometimes triggered accidently.
  359.  
  360. - Enhanced popup menu configuration possibilities, including
  361.   custom background and frame settings and animated appearance.
  362.  
  363. - Removed the startup and shutdown command config options.
  364.  
  365. Changes for programmers:
  366.  
  367. - Implemented MUIV_NotTriggerValue. See autodocs of MUIM_Notify for
  368.   details.
  369.  
  370. - Fixed some autodoc syntax bugs, added version information for every
  371.   class and attribute.
  372.  
  373. - Implemented MUIA_Application_ForceQuit. See autodocs for details.
  374.  
  375. - Invisible or disabled objects don't trigger MUIA_AppMessage
  376.   notification anymore.
  377.  
  378. - Fixed Dirlist class problems with short directory names.
  379.  
  380. - When MUI fails to open a window, notifications on MUIA_Window_Open
  381.   are not triggered anymore.
  382.  
  383. - Fixed a little memory eating bug.
  384.  
  385. - Added a "often used object" collection to muimaster.library. You
  386.   should use this collection as frequently as possible instead of
  387.   building your own objects or using the supplied macros. See
  388.   autodocs of MUI_MakeObject() for details.
  389.  
  390. - Simplified the creation of labels with underscore. This makes
  391.   localization much easier. See autodocs of MUI_MakeObject()
  392.   for details.
  393.  
  394. - Added object oriented menus. See new demo program and autodocs of
  395.   menustrip, menu and menu item class for details.
  396.  
  397. - Controlling a slider object with keyboard accidently triggered
  398.   notification twice.
  399.  
  400. - Fixed problems when language specific special characters were
  401.   used as shortcut.
  402.  
  403. - Included documentation on how to write external public
  404.   custom classes. See developer docs and new examples in
  405.   "MUI/Developer/C/Examples/Classes" for details.
  406.  
  407. - Fixed a crash when the colorwheel.gadget was not available under V39.
  408.  
  409. - Implemented new builtin classes MUIC_Poplist, MUIC_Bitmap and
  410.   MUIC_Bodychunk. Just a few bytes of code but very useful.
  411.  
  412. - Rewrote some critical parts of MUI in assembler.
  413.  
  414. - Fixed a problem when MUIA_ShowMe was used on groups.
  415.  
  416. - Implemented MUIA_Window_FancyDrawing for highspeed programs.
  417.  
  418. - Fixed some notification bugs for register objects.
  419.  
  420.  
  421.  
  422. ------------------------------------------------------------------------
  423. Version 2.0  (11-Feb-94)                      (muimaster.library V7.973)
  424. ------------------------------------------------------------------------
  425.  
  426. Changes for users:
  427.  
  428. - Rearranged libraries. Classes which are needed by all applications or
  429.   which are very small are integrated in muimaster.library. Fancy and
  430.   rarely used classes come as external files. This speeds up starting
  431.   the first MUI application and simplifies installation procedure for
  432.   commercial applications.
  433.  
  434. - Integration of classes increases performance significantly.
  435.  
  436. - Rearranged the prefs program completely. Major changes include
  437.   "single application" mode, image multiselect, presets and localization.
  438.   I cannot list all the other news here in detail, but together they should
  439.   make adjusting preferences a lot easier.
  440.  
  441. - Included beautiful new 8 color images, patterns and button designs from
  442.   Martin "MagicWB" Huttenloher. Give them a try!
  443.  
  444. - Fixed several screenmode requester bugs.
  445.  
  446. - Fixed problems with crazy going prop gadgets.
  447.  
  448. - Changed "active object" display. No more ugly active background but
  449.   instead a nice extra frame will be displayed.
  450.  
  451. - Getting the name of the used public screen is possible with
  452.   new ARexx command "info screen".
  453.  
  454. - Documented ARexx command error result codes.
  455.  
  456.  
  457. Changes for programmers:
  458.  
  459. - More detailed developer documentation including information about
  460.   writing custom classes and a MUI style guide. Read it!
  461.  
  462. - Included new demos "Class<n>" to show how to implement custom
  463.   classes.
  464.  
  465. - Added the ability to specify a listview multiselect type directly.
  466.   See MUIA_Listview_MultiSelect attribute for details.
  467.  
  468. - The MUIA_ShowMe attribute can be used to hide objects. Using this
  469.   attribute is even possible in open windows, hiding object will
  470.   then cause a new layout to take place. When necessary, the parent
  471.   window will be resized automatically. Included new demo program
  472.   "ShowHide".
  473.  
  474. - Implemented popstring, popasl, popobject classes for asynchronous
  475.   popups. popasl class is the recommended way to include file/font/etc.
  476.   requesters. Included new demo program "Popup" to demonstrate the new
  477.   popup classes.
  478.  
  479. - Added a register class. No, this is not for registrating your MUI,
  480.   its used to create flexible titled page groups. See the prefs
  481.   program and the pages demo for details.
  482.  
  483. - Added the ability to specify a listview multiselect type directly.
  484.   See MUIA_Listview_MultiSelect attribute for details.
  485.  
  486. - Implemented MUIM_List_InsertSingle method.
  487.  
  488. - Multiline entries ("foo\nbar") in a cycle gadget were not handled
  489.   correctly.
  490.  
  491. - Implemented MUIA_Rectangle_HBar and MUIA_Rectangle_VBar to create
  492.   nice single border lines.
  493.  
  494. - Implemented MUIM_MultiSet method, MUIA_NoNotify attribute and
  495.   MUIM_KillNotify method for notify class.
  496.  
  497. - Implemented MUIA_Gauge_InfoText attribute.
  498.  
  499. - Implemented MUIA_Listview_ClickColumn, MUIA_Listview_DefClickColumn.
  500.  
  501. - Fixed problem with MUIA_Application_Iconified notification.
  502.  
  503. - Implemented MUIV_List_Select_All for MUIM_List_Select method.
  504.  
  505. - Fixed some problems with sleeping windows and applications.
  506.  
  507. - MUIA_List_First and MUIA_List_Visible are really get()able.
  508.  
  509. - Fixed a problem with keyboard control for MUIA_Slider_Quiet sliders,
  510.   implemented MUIA_Slider_Reverse tag.
  511.  
  512. - Tag value and documentation for MUIA_List_Title attribute was
  513.   missing.
  514.  
  515. - Specifying images with "1:<x>" never worked, use "6:<x>" instead.
  516.   See MUIA_Image_Spec for details.
  517.  
  518. - MUI_Request() gadgets may contain '_' characters to indicate keyboard
  519.   shortcuts.
  520.  
  521. - Implemented MUIA_Application_RexxHook.
  522.  
  523. - Implemented MUIA_String_EditHook.
  524.  
  525.  
  526.  
  527. ------------------------------------------------------------------------
  528. Version 1.4  (27-Oct-93)                      (muimaster.library V6.435)
  529. ------------------------------------------------------------------------
  530.  
  531. From V1.4 on, MUI is distributed in two separate archives:
  532.   muiXXusr.lha - libraries, classes, demos, user documentation.
  533.   muiXXdev.lha - programmer interfaces and programmer documentation.
  534.  
  535.  
  536. Changes for users:
  537.  
  538. - Important Note:
  539.   Due to some enhancements in image processing, registered users will
  540.   have to readjust their image settings. Otherwise some images might
  541.   not be visible!
  542.  
  543. - I accept every currency for registration now. Please read the
  544.   registration section of the manual for details.
  545.  
  546. - Rearranged preferences program. Instead of many different windows,
  547.   page groups are used and should make things a lot easier.
  548.  
  549. - Implemented palette gadget for public screens.
  550.  
  551. - Added the possibility to use an RGB color as image (V39 and above).
  552.  
  553. - Implemented background pattern for screens (V39 and above).
  554.  
  555. - Background pictures allocate their colors correctly (V39 and above).
  556.  
  557. - Gauge frame and radio button spacing didn't work.
  558.  
  559. - Reduced flicker when resizing a window with a fancy background.
  560.  
  561. - Added configuration switch for window redraw type. Possible settings
  562.   are fast/ugly and slow/nice. Defaults to fast/ugly, which isn't really
  563.   really ugly but maybe faster.
  564.  
  565. - Added special screen type to address the frontmost public screen.
  566.  
  567. - Speeded up first drawing of a window.
  568.  
  569. - Fixed some simple refresh problems with page groups.
  570.  
  571. - Iconify Gadget wasn't visible on a one plane display.
  572.  
  573. - Improved text rendering speed about 20% (maybe even more if you have
  574.   some data cache).
  575.  
  576. - Made cycle popups blazingly fast and more configurable (frame setting).
  577.  
  578. - One gadget requesters can always be answered with the <Press> key.
  579.  
  580. - Two gadget requesters can always be answered with 'y' for the left
  581.   and 'n' for the right gadget.
  582.  
  583. - Requester buttons sometimes were layouted with no intermediate
  584.   spacing.
  585.  
  586. - Scrolling a partially obscured listview in a simple refresh window
  587.   would create some pixel garbage.
  588.  
  589. - Reasonably speeded up listview drawing, cursor handling and multi
  590.   selecting. Together with keyboard scrolling, display is even faster
  591.   if a listview's height is exactly a multiple of its line height.
  592.  
  593. - Implemented configuration switch for full line listviews. These
  594.   listviews won't show incomplete lines are and are somewhat
  595.   faster. Default are full line listviews.
  596.  
  597. - Fixed some public screen open and close problems.
  598.  
  599. - Tab size in floattext class was handled wrong.
  600.  
  601. - Eliminated first and last line flicker when scrolling listviews.
  602.  
  603. - Rearranged and rewrote parts of the documentation.
  604.  
  605. - Please read the manuals "Discussion" section before reporting
  606.   any problems!
  607.  
  608.  
  609. Changes for programmers:
  610.  
  611. - Attention... very powerful feature... :-)
  612.   Implemented virtual (scrolling) groups. Included new program
  613.   "Virtual" for demonstration.
  614.  
  615. - New color oriented classes: Colorfield, Coloradjust, Palette.
  616.  
  617. - Fixed vertical slider problem.
  618.  
  619. - Trying to create an object from a non existing class caused an
  620.   enforcer hit.
  621.  
  622. - Enabling a group containing prop/string gadgets didn't really enable
  623.   the gadgets.
  624.  
  625. - Implemented MUIM_WriteString and MUIM_WriteLong methods for easy
  626.   structure updating.
  627.  
  628. - Implemented MUIA_ControlChar for slider objects.
  629.  
  630. - MUIA_Group_ActivePage didn't trigger notification.
  631.  
  632. - Fixed some minor text engine bugs.
  633.  
  634. - During the execution of a MUIM_CallHook in a notify method,
  635.   other MUI tasks were locked.
  636.  
  637. - Implemented MUIA_Version and MUIA_Revision attributes to allow
  638.   version checking for applications.
  639.  
  640. - The number of the current entry is passed to a list display
  641.   hook as additional parameter.
  642.  
  643. - Setting a boopsi gadgets attributes didn't cause a display update.
  644.  
  645. - Setting MUIA_Background wouldn't always update the display.
  646.  
  647. - Children of MUIA_Group_SameXXXX groups could accidently be enlarged
  648.   beyond their maximum size.
  649.  
  650. - Implemented MUIA_Application_BrokerPri attribute.
  651.  
  652. - Implemented MUIA_Application_BrokerPort attribute. This port can
  653.   e.g. be used to add additional HotKeys with the HotKey() amiga.lib
  654.   function.
  655.  
  656. - Recognizing a press/release of a prop gadget is possible by
  657.   listening to the MUIA_Prop_Pressed attribute.
  658.  
  659. - Adding and removing members of groups could accidently change
  660.   the groups orientation.
  661.  
  662. - Implemented some new standard images concerning tape deck and network
  663.   issues.
  664.  
  665. - MUIM_Application_Get/SetMenuCheck didn't work.
  666.  
  667. - Some Modula and Oberon interface changes.
  668.  
  669. - Implemented MUIA_Slider_Quiet tag to hide the number output.
  670.  
  671. - Implemented MUIA_Dirlist_MultiSelDirs attribute.
  672.  
  673. - Implemented MUIA_Window_PublicScreen tag to force opening windows
  674.   on certain public screens.
  675.  
  676. - Implemented MUIM_List_NextSelected to help stepping through selected
  677.   entries of a list.
  678.  
  679. - Implemented MUIA_List_Title attribute to support titles for
  680.   (multi columned) lists.
  681.  
  682. - MUIA_List_Active wasn't reported during a MUIM_List_Clear.
  683.  
  684. - MUIA_List_Active was reported twice during a MUIM_List_Remove.
  685.  
  686. - MUIA_Boopsi_Object didn't trigger notification.
  687.  
  688. - Implemented default sizes for all classes. New windows will
  689.   be opened using these default sizes instead of
  690.   MUIV_Window_Width/Height_MinMax(10).
  691.  
  692. - Menu multi select didn't work.
  693.  
  694. - Autodocs are alphabetically sorted now.
  695.  
  696.  
  697.  
  698. ------------------------------------------------------------------------
  699. Version 1.3  (29-Aug-93)                      (muimaster.library V5.141)
  700. ------------------------------------------------------------------------
  701.  
  702. - MUIA_String_Secret string gadgets crashed on an 68000.
  703.  
  704. - Corrected assembler includes.
  705.  
  706. - Fixed bug with MUIA_Window_ActiveObject.
  707.  
  708.  
  709.  
  710. ------------------------------------------------------------------------
  711. Version 1.2  (28-Aug-93)                      (muimaster.library V5.140)
  712. ------------------------------------------------------------------------
  713.  
  714. - Fixed enforcer hits in ARexx HELP command.
  715.  
  716. - Setting MUIA_Background did not refresh the display.
  717.  
  718. - Added validity check on key description strings in prefs program.
  719.  
  720. - Initializing string or prop gadgets with MUIA_Disabled didn't really
  721.   disable the gadget.
  722.  
  723. - Fixed some sync problems with MUIA_String_Integer.
  724.  
  725. - Menu checkmarks would disappear when a window was closed and reopened.
  726.  
  727. - Specifying a non existing font caused windows to disappear.
  728.  
  729. - Included Manx, Assembler, Modula, Oberon and Amiga-E interfaces.
  730.  
  731. - Implemented MUIA_Window_Screen attribute. This allows opening a
  732.   MUI window on an explicitly defined intuition screen.
  733.  
  734. - Rewrote the image caching mechanism. This should fix some bugs
  735.   and system crashes with non existing external image files.
  736.  
  737. - Fixed a bad bug that could trash the stack under certain
  738.   circumstances.
  739.  
  740. - MUIA_Selected didn't work at object creation time.
  741.  
  742. - Better MOUSEMOVE and INTUITICKS handling to improve performance.
  743.  
  744. - Using simple refresh windows would sometimes freeze the system.
  745.  
  746. - Attention... very powerful feature... :-)
  747.   Implemented two new attributes for group class:
  748.   MUIA_Group_PageMode   (TRUE/FALSE)      this group is a page group.
  749.   MUIA_Group_ActivePage (0...numchilds-1) this child shall be displayed.
  750.   Page groups always show exactly one of their childs. The number of
  751.   this child can be changed dynamically, even in an open window.
  752.   New demo "Pages" demonstrates the new page groups.
  753.  
  754. - Included AppWindow support. See MUIA_Window_AppWindow,
  755.   MUIA_Application_DropObject and MUIA_AppMessage for details.
  756.   New demo "AppWindow" for demonstration.
  757.  
  758. - Bumped version number of all libs to 5. You must not mix MUI
  759.   classes and libraries with different version numbers, this
  760.   will lead into problems. Revision numbers are uncritical.
  761.   Note: This does not affect applications. They will of course
  762.   work with all MUI releases, as long as all version numbers
  763.   are identical.
  764.  
  765. - Included version number checking. MUI will refuse to open
  766.   classes when the class version doesn't match the master
  767.   library. Note: when I'm sure about internal class communication
  768.   (maybe in a few months...), this check will become obsolete.
  769.  
  770.  
  771.  
  772. ------------------------------------------------------------------------
  773. Version 1.1  (15-Aug-93)                       (muimaster.library V4.58)
  774. ------------------------------------------------------------------------
  775.  
  776. - Removed a remaining serial debug output.
  777.  
  778. - Corrected installation script for 2.x systems.
  779.  
  780. - Corrected HELP: assign of "StartMeFirst" script.
  781.  
  782. - Corrected some autodocs and header file bugs.
  783.  
  784. - Added system configuration switch to adjust window refresh
  785.   type, possibilities are simple refresh and smart refresh.
  786.  
  787. - Made some changes to the Oberon interface.
  788.  
  789. - String gadgets with an invisible font ate some bytes of memory.
  790.  
  791. - Fixed some bugs with failing boopsi images.
  792.  
  793. - Some minor changes to some of the demo programs.
  794.  
  795. - Speeded object creation about 10%.
  796.  
  797. - For boopsi image implementors: boopsi images now have the ability
  798.   to specify a desired minimum and maximum size. See "mui.h"
  799.   for details.
  800.  
  801. - Implemented MUIA_Window_DefaultObject attribute. See autodocs
  802.   for details.
  803.  
  804. - Added some new boopsi images.
  805.  
  806. - Implemented MUIA_ControlChar for radio buttons. Pressing
  807.   the control char will activate the next (shift -> previous)
  808.   radio button element.
  809.  
  810. - Implemented MUIA_ControlChar for string gadgets. Pressing
  811.   the control char will activate the gadget.
  812.  
  813. - Added some more keyboard shortcuts to the prefs program.
  814.  
  815. - Minimum width for MUIA_Window_SizeRight windows was calculated wrong.
  816.  
  817. - Last characters of some text fields were not displayed with
  818.   certain fonts.
  819.  
  820.  
  821.  
  822. ------------------------------------------------------------------------
  823. Version 1.0  (08-Aug-93)                        (muimaster.library V4.4)
  824. ------------------------------------------------------------------------
  825.  
  826. - Initial Release.
  827.